home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / qlib205.zip / QLIB.ZIP / INC / ALLOC.INC next >
Text File  |  1997-01-07  |  384b  |  18 lines

  1. ifndef __ALLOC_H__
  2. __ALLOC_H__ equ 0
  3. .code
  4. malloc proto,:dword ;eax=location
  5. calloc proto,:dword,:dword ;eax=location
  6. free proto,b:dword
  7. coreleft proto ;query free ram ;out:eax=total free
  8. qfree proto ;query free ram  ;out:eax=largest
  9. realloc proto,p:dword,siz:dword
  10.  
  11. farmalloc equ <malloc>
  12. farcalloc equ <calloc>
  13. farfree equ <free>
  14. farcoreleft equ <coreleft>
  15.  
  16. endif
  17.  
  18.